home *** CD-ROM | disk | FTP | other *** search
- Path: newsserv.zdv.uni-tuebingen.de!news
- From: Michael.Will@student.uni-tuebingen.de (Michael Will)
- Newsgroups: comp.lang.c
- Subject: Re: How to make it BEEP ?
- Date: 25 Mar 1996 10:58:26 +0100
- Organization: x
- Sender: zxmgv07@desaster.student.uni-tuebingen.de
- Message-ID: <m37mw9qyt9.fsf@desaster.student.uni-tuebingen.de>
- References: <4ihuuh$6ul@hatathli.csulb.edu> <4in0ih$o43@zeus.intellinet.com>
- <4in5r1$j90@druid.borland.com> <4inmv1$ljj@sunburst.ccs.yorku.ca>
- <3150380D.1511@willows.com> <danpop.827519148@rscernix>
- NNTP-Posting-Host: zxmgv07.extern.uni-tuebingen.de
- In-reply-to: danpop@mail.cern.ch's message of 22 Mar 96 18:25:48 GMT
- X-Newsreader: Gnus v5.0.15
-
- In article <danpop.827519148@rscernix> danpop@mail.cern.ch (Dan Pop) writes:
-
- > >> C function on unix that I can use to make a beep sound.
- > >You could use printf ( "%c", 0x07 );
- > If you're clueless enough :-)
- give him a clue then:
-
- #define BEEP_CHARACTER (char) 0x07
-
- putchar (BEEP_CHARACTER);
-
-
- Or what would you propose?
-
- Cheers, Michael Will
-